home *** CD-ROM | disk | FTP | other *** search
/ IRIX 6.2 Development Libraries / SGI IRIX 6.2 Development Libraries.iso / dist / complib.idb / usr / share / catman / p_man / cat3 / complib / zlartv.z / zlartv
Text File  |  1996-03-14  |  2KB  |  67 lines

  1.  
  2.  
  3.  
  4. ZZZZLLLLAAAARRRRTTTTVVVV((((3333FFFF))))                                                          ZZZZLLLLAAAARRRRTTTTVVVV((((3333FFFF))))
  5.  
  6.  
  7.  
  8. NNNNAAAAMMMMEEEE
  9.      ZLARTV - applie a vector of complex plane rotations with real cosines to
  10.      elements of the complex vectors x and y
  11.  
  12. SSSSYYYYNNNNOOOOPPPPSSSSIIIISSSS
  13.      SUBROUTINE ZLARTV( N, X, INCX, Y, INCY, C, S, INCC )
  14.  
  15.          INTEGER        INCC, INCX, INCY, N
  16.  
  17.          DOUBLE         PRECISION C( * )
  18.  
  19.          COMPLEX*16     S( * ), X( * ), Y( * )
  20.  
  21. PPPPUUUURRRRPPPPOOOOSSSSEEEE
  22.      ZLARTV applies a vector of complex plane rotations with real cosines to
  23.      elements of the complex vectors x and y. For i = 1,2,...,n
  24.  
  25.         ( x(i) ) := (        c(i)   s(i) ) ( x(i) )
  26.         ( y(i) )    ( -conjg(s(i))  c(i) ) ( y(i) )
  27.  
  28.  
  29. AAAARRRRGGGGUUUUMMMMEEEENNNNTTTTSSSS
  30.      N       (input) INTEGER
  31.              The number of plane rotations to be applied.
  32.  
  33.      X       (input/output) COMPLEX*16 array, dimension (1+(N-1)*INCX)
  34.              The vector x.
  35.  
  36.      INCX    (input) INTEGER
  37.              The increment between elements of X. INCX > 0.
  38.  
  39.      Y       (input/output) COMPLEX*16 array, dimension (1+(N-1)*INCY)
  40.              The vector y.
  41.  
  42.      INCY    (input) INTEGER
  43.              The increment between elements of Y. INCY > 0.
  44.  
  45.      C       (input) DOUBLE PRECISION array, dimension (1+(N-1)*INCC)
  46.              The cosines of the plane rotations.
  47.  
  48.      S       (input) COMPLEX*16 array, dimension (1+(N-1)*INCC)
  49.              The sines of the plane rotations.
  50.  
  51.      INCC    (input) INTEGER
  52.              The increment between elements of C and S. INCC > 0.
  53.  
  54.  
  55.  
  56.  
  57.  
  58.  
  59.  
  60.  
  61.  
  62.  
  63.                                                                         PPPPaaaaggggeeee 1111
  64.  
  65.  
  66.  
  67.